-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add loggers in collector/modifier #468
Add loggers in collector/modifier #468
Conversation
@@ -48,7 +48,7 @@ public JavaScriptJobResult execute(String jsSnippet, Object... elements) | |||
|
|||
private JavaScriptJobResult executeJs(String jsSnippet, Object... elements) { | |||
if (LOGGER.isDebugEnabled()) { | |||
LOGGER.debug("Executing JavaScript command: {} on page: {}", jsSnippet, currentUrl); | |||
LOGGER.trace("Executing JavaScript command: {} on page: {}", jsSnippet, currentUrl); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! 👍
final String html = jsExecutor.execute(DOCUMENT_OUTER_HTML_SCRIPT) | ||
.getExecutionResultAsString(); | ||
LOGGER.debug("Executing Accessibility Collector"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate messages were on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed :)
I made changes in loggers as suggested in #446
Description
Motivation and Context
Closes #446
Types of changes
Checklist:
I hereby agree to the terms of the AET Contributor License Agreement.